Don't leak parent_path. (#168435, Morten Welinder)
authorMatthias Clasen <mclasen@redhat.com>
Thu, 24 Feb 2005 20:28:26 +0000 (20:28 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 24 Feb 2005 20:28:26 +0000 (20:28 +0000)
2005-02-24  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path):
Don't leak parent_path.  (#168435, Morten Welinder)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkfilechooserdefault.c

index 116257453ea4fa1f684e705aba9699bcd6629ff0..d8090ef164a4b003ece0bb7f3c7f39132274ea18 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-24  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
+       Don't leak parent_path.  (#168435, Morten Welinder)
+
 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
 
        * gtk/gtkstyle.c: Add
@@ -14,7 +19,7 @@ Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
 
 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
 
-        Fix #167259, reported by  Christian Persch:
+       Fix #167259, reported by  Christian Persch:
        
        * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
        widget, even if we avoid the unrealizing. 
index 116257453ea4fa1f684e705aba9699bcd6629ff0..d8090ef164a4b003ece0bb7f3c7f39132274ea18 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-24  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
+       Don't leak parent_path.  (#168435, Morten Welinder)
+
 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
 
        * gtk/gtkstyle.c: Add
@@ -14,7 +19,7 @@ Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
 
 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
 
-        Fix #167259, reported by  Christian Persch:
+       Fix #167259, reported by  Christian Persch:
        
        * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
        widget, even if we avoid the unrealizing. 
index 116257453ea4fa1f684e705aba9699bcd6629ff0..d8090ef164a4b003ece0bb7f3c7f39132274ea18 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-24  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
+       Don't leak parent_path.  (#168435, Morten Welinder)
+
 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
 
        * gtk/gtkstyle.c: Add
@@ -14,7 +19,7 @@ Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
 
 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
 
-        Fix #167259, reported by  Christian Persch:
+       Fix #167259, reported by  Christian Persch:
        
        * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
        widget, even if we avoid the unrealizing. 
index 22738430bd4cf3f5de01d9c3f394e122bfe2ea8f..eb2df63d732e95a4d6c4afe1a63e7c071963543f 100644 (file)
@@ -4867,6 +4867,7 @@ gtk_file_chooser_default_select_path (GtkFileChooser    *chooser,
       return result;
     }
 
+  gtk_file_path_free (parent_path);
   return TRUE;
 }